home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / hpux / seteuid.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  85b  |  8 lines

  1. #include <unistd.h>
  2.  
  3. int
  4. seteuid(uid_t uid)
  5. {
  6.     return (setresuid(-1, uid, -1));
  7. }
  8.